home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Source / ThreeDPane.h < prev    next >
Encoding:
Text File  |  1993-03-18  |  865 b   |  49 lines

  1.  
  2. /* $Id: ThreeDPane.h,v 1.1.1.1 1993/03/18 03:36:15 davis Exp $ */
  3.  
  4. #import <appkit/Button.h>
  5.  
  6. #import "Pane.h"
  7.  
  8.  
  9. @interface ThreeDPane:Pane
  10. {
  11.     BOOL didSwap;
  12.     id    threeDButton;
  13.  
  14.     id    surfaceTypeMatrix;
  15.  
  16.     id    isoSamplesMatrix;
  17.     id    isoSamplesLabel;
  18.  
  19.     id  rotXSlider;
  20.     id  rotZSlider;
  21.     id    rotMatrix;
  22.     id    rotationResetButton;
  23.  
  24.     id    contourOptionsPanel;
  25.     id    contourBaseButton;
  26.     id    contourSurfaceButton;
  27.     id    contourOptionsButton;
  28. }
  29.  
  30.  
  31. - init;
  32.  
  33. - selectControl:sender;            /** Overridden from Pane    **/
  34. - (BOOL)updateStatus:aStatus doc:aDoc;
  35. - (BOOL)forceUpdateStatus:aStatus doc:aDoc;
  36.  
  37.  
  38. - doSetThreeD:sender;
  39. - doSetSurfaceType:sender;
  40. - doSetIsoSamples:sender;
  41. - doSetRotation:sender;
  42. - doResetRotation:sender;
  43. - doSetContourBase:sender;
  44. - doSetContourSurface:sender;
  45.  
  46. - showContourOptionsPanel:sender;    /** Contour Options Panel    **/
  47.  
  48. @end
  49.